const github.com/klauspost/compress/flate.baseMatchLength
12 uses
github.com/klauspost/compress/flate (current package)
fast_encoder.go#L42: baseMatchLength = 3 // The smallest match length per the RFC section 3.2.5
level1.go#L181: if xl > 258+baseMatchLength {
level1.go#L184: xl = 258 - baseMatchLength
level1.go#L188: xl -= baseMatchLength
level4.go#L156: if l < baseMatchLength {
level5.go#L238: if l < baseMatchLength {
level5.go#L550: if l < baseMatchLength {
level6.go#L273: if l < baseMatchLength {
token.go#L266: if xlength >= maxMatchLength+baseMatchLength {
token.go#L296: if xl > 258+baseMatchLength {
token.go#L299: xl = 258 - baseMatchLength
token.go#L303: xl -= baseMatchLength
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |